home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBSwitch / SwitchDlg.h < prev   
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.4 KB  |  53 lines

  1. /*****************************************************
  2. HTBSwitch.dll
  3.  
  4. SwitchDlg.h
  5.  
  6. Copyright 1999 TransEra Corporation
  7. *****************************************************/
  8.  
  9. #if !defined(AFX_SWITCHDLG_H__3F055CCF_7CCE_11D3_8BD0_00105AC66D91__INCLUDED_)
  10. #define AFX_SWITCHDLG_H__3F055CCF_7CCE_11D3_8BD0_00105AC66D91__INCLUDED_
  11.  
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15.  
  16. class SwitchDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     SwitchDlg(CWnd* pParent = NULL);   // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(SwitchDlg)
  24.     enum { IDD = IDD_DIALOG1 };
  25.         // NOTE: the ClassWizard will add data members here
  26.     //}}AFX_DATA
  27.  
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(SwitchDlg)
  32.     protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. protected:
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(SwitchDlg)
  41.     virtual BOOL OnInitDialog();
  42.     afx_msg void OnPaint();
  43.     afx_msg void OnTimer(UINT nIDEvent);
  44.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51.  
  52. #endif // !defined(AFX_SWITCHDLG_H__3F055CCF_7CCE_11D3_8BD0_00105AC66D91__INCLUDED_)
  53.